home *** CD-ROM | disk | FTP | other *** search
- package javax.swing;
-
- import javax.swing.event.ListSelectionListener;
-
- public interface ListSelectionModel {
- int SINGLE_SELECTION = 0;
- int SINGLE_INTERVAL_SELECTION = 1;
- int MULTIPLE_INTERVAL_SELECTION = 2;
-
- void addListSelectionListener(ListSelectionListener var1);
-
- void addSelectionInterval(int var1, int var2);
-
- void clearSelection();
-
- int getAnchorSelectionIndex();
-
- int getLeadSelectionIndex();
-
- int getMaxSelectionIndex();
-
- int getMinSelectionIndex();
-
- int getSelectionMode();
-
- boolean getValueIsAdjusting();
-
- void insertIndexInterval(int var1, int var2, boolean var3);
-
- boolean isSelectedIndex(int var1);
-
- boolean isSelectionEmpty();
-
- void removeIndexInterval(int var1, int var2);
-
- void removeListSelectionListener(ListSelectionListener var1);
-
- void removeSelectionInterval(int var1, int var2);
-
- void setAnchorSelectionIndex(int var1);
-
- void setLeadSelectionIndex(int var1);
-
- void setSelectionInterval(int var1, int var2);
-
- void setSelectionMode(int var1);
-
- void setValueIsAdjusting(boolean var1);
- }
-